home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / gcc270_src.lha / gcc-2.7.0-amiga / configure.bat < prev    next >
DOS Batch File  |  1995-05-16  |  437b  |  22 lines

  1. @echo off
  2. if %1.==go32. goto call_go32
  3. if %1.==winnt. goto call_winnt
  4. echo Usage: configure go32 or configure winnt cpu
  5. goto END
  6.  
  7. :call_go32
  8. call config\msdos\configure %1 %2 %3 %4
  9. goto END
  10.  
  11. :call_winnt
  12. if %2.==i386. goto really_call_winnt
  13. if %2.==alpha. goto really_call_winnt
  14. echo Usage: configure winnt i386 or configure winnt alpha
  15. goto END
  16. :really_call_winnt
  17. call config\%2\config-nt %1 %2 %3 %4
  18. goto END
  19.  
  20. :END
  21.  
  22.